Conversation
…and transform node components
… and adjust tag handling
Greptile SummaryThis PR simplifies the pipeline editor UI by removing data type badges (Log/Metric/Trace) and config summary previews from source, transform, and sink nodes. The changes also add path filters to CI workflows to prevent unnecessary builds, add screenshots to README documentation, and align the dev docker-compose configuration with production by adding the backups volume mount. Key Changes:
Confidence Score: 5/5
Important Files Changed
Last reviewed commit: 4f4dfaa |
| server-image: | ||
| name: Server Image | ||
| needs: check | ||
| if: github.event_name == 'push' | ||
| runs-on: ubuntu-latest |
There was a problem hiding this comment.
removing the if: github.event_name == 'push' condition means images will be pushed to the registry on every PR (since push: true on line 79). this will pollute the registry with unreviewed code and cause all PRs to overwrite the same dev tag
| server-image: | |
| name: Server Image | |
| needs: check | |
| if: github.event_name == 'push' | |
| runs-on: ubuntu-latest | |
| server-image: | |
| name: Server Image | |
| needs: check | |
| if: github.event_name == 'push' | |
| runs-on: ubuntu-latest |
| agent-image: | ||
| name: Agent Image | ||
| needs: check | ||
| if: github.event_name == 'push' | ||
| runs-on: ubuntu-latest |
There was a problem hiding this comment.
same issue - removing if: github.event_name == 'push' will cause agent images to be pushed on every PR
| agent-image: | |
| name: Agent Image | |
| needs: check | |
| if: github.event_name == 'push' | |
| runs-on: ubuntu-latest | |
| agent-image: | |
| name: Agent Image | |
| needs: check | |
| if: github.event_name == 'push' | |
| runs-on: ubuntu-latest |
No description provided.